const go/token.VAR

16 uses

	go/token (current package)
		token.go#L126: 	VAR
		token.go#L232: 	VAR:    "var",

	go/doc
		doc.go#L133: 		Vars:       sortedValues(r.values, token.VAR),
		reader.go#L576: 			case token.CONST, token.VAR:
		reader.go#L860: 			Vars:    sortedValues(t.values, token.VAR),

	go/parser
		parser.go#L382: 	token.VAR:         true,
		parser.go#L388: 	token.VAR:   true,
		parser.go#L2078: 		if p.tok == token.VAR {
		parser.go#L2434: 	case token.CONST, token.TYPE, token.VAR:
		parser.go#L2559: 	case token.VAR:
		parser.go#L2819: 	case token.CONST, token.VAR:
		resolver.go#L448: 		case token.CONST, token.VAR:
		resolver.go#L452: 				if n.Tok == token.VAR {

	go/printer
		nodes.go#L1677: 			if n > 1 && (d.Tok == token.CONST || d.Tok == token.VAR) {

	go/types
		decl.go#L398: 				case token.VAR:
		labels.go#L131: 			if d, _ := s.Decl.(*ast.GenDecl); d != nil && d.Tok == token.VAR {